home *** CD-ROM | disk | FTP | other *** search
/ The World's Largest Collection of Windows Software / The World's Largest Collection of Windows Software - Disc 2.iso / win / pro240 / soundoff. < prev    next >
Text File  |  1993-07-22  |  2KB  |  59 lines

  1. #/***************************************************************************/
  2. #/*                              CD SOUND OFF                               */
  3. #/***************************************************************************/
  4. #/*
  5. #
  6. #    CD SoundOff is an audio CD player that is provided for your enjoyment.  
  7. #If you like CD SoundOff, feel free to show me by helping with the 
  8. #development costs.  Any and all donations will be greatly appreciated.
  9. #
  10. #    CD SoundOff is provided as is with the C source code.  This software was 
  11. #developed using the Microsoft Windows 3.1 SDK and Microsoft C 7.0.  Feel free 
  12. #to add your own enhancements to CD SoundOff and please send me a copy
  13. #so that I can keep up with all of the new and exciting CD bells and 
  14. #whistles.  
  15. #
  16. #                              NickleWare
  17. #                              P.O. Box 393
  18. #                              Orem, UT. 84059
  19. #
  20. #
  21. #
  22. #NickleWare 
  23. #CompuServe: 72730,1002
  24. #Copyright (C) 93 Bradley Nicholes 
  25. #
  26. #This documentation must accompany the CD SoundOff software. 
  27. #
  28. #NickleWare or Bradley Nicholes shall not be liable for any damages, whether 
  29. #direct, indirect, special or consequential arising from the use or failure 
  30. #of this program to operate in the manner desired by the user.
  31. #
  32. #*/
  33. #
  34. #/**************************************************************************/
  35.  
  36.  
  37. OPT= -Ox
  38. DEBUG=      
  39. CVPLINK= 
  40.  
  41. .c.obj:
  42.     cl -c -AM $(OPT) -Zp -G2sw -W3 -FPa $(DEBUG) $*.c >$*.err
  43.     type $*.err
  44.     lib SoundOff -+$*.obj;
  45.     
  46. all: soundoff.res soundoff.obj soundoff.exe
  47.     
  48. SoundOff.res: SoundOff.rc SoundOff.dlg SoundOff.h
  49.     rc -r SoundOff.rc
  50.  
  51. SoundOff.obj: SoundOff.c SoundOff.h
  52.  
  53. SoundOff.exe: SoundOff.obj SoundOff.lib SoundOff.def SoundOff.res
  54.     link /m/seg:256/packcode:4096/a:16 SoundOff, SoundOff, SoundOff, \
  55.        SoundOff mmsystem mlibcaw libw/NOE/NOD $(CVPLINK), SoundOff.def
  56.     rc SoundOff.res
  57.  
  58.  
  59.